超时
TimeoutMs 提供了一个可选的超时时间(以毫秒为单位),超时后 OCR 读取操作将被取消。
与 AbortToken 类似,TimeoutMs 也有助于在程序或应用程序卡住时读取大型输入文件。
请注意,.NET Framework 4.xx 不支持此功能。
准备开始了吗?
Nuget 下载 5,585,834 | 版本: 2026.4 刚刚发布
using IronOcr;
int cancel_time = 1000;
// Opens a Large PDF which may need to be cancelled early
IronTesseract ocrTesseract = new IronTesseract() { Language = OcrLanguage.English };
var ocrInput = new OcrInput();
ocrInput.LoadPdf("large-report.pdf");
// Starts a read on the PDF using IronOCR with specified cancel time
OcrReadTask ocrRead = ocrTesseract.ReadAsync(ocrInput, cancel_time);
ocrRead.Wait();
Imports IronOcr
Private cancel_time As Integer = 1000
' Opens a Large PDF which may need to be cancelled early
Private ocrTesseract As New IronTesseract() With {.Language = OcrLanguage.English}
Private ocrInput = New OcrInput()
ocrInput.LoadPdf("large-report.pdf")
' Starts a read on the PDF using IronOCR with specified cancel time
Dim ocrRead As OcrReadTask = ocrTesseract.ReadAsync(ocrInput, cancel_time)
ocrRead.Wait()
Install-Package IronOcr
TimeoutMs 提供了一个可选的超时时间(以毫秒为单位),超时后 OCR 读取操作将被取消。
与 AbortToken 类似,TimeoutMs 也有助于在程序或应用程序卡住时读取大型输入文件。
请注意,.NET Framework 4.xx 不支持此功能。